home *** CD-ROM | disk | FTP | other *** search
- global gMood, gState, gAnswers, gJR, gTM, gMS
-
- on startMovie
- set gAnswers to 1
- end
-
- on PickMood
- set gMood to random(3)
- if gMood = 1 then
- play frame "MoodBad"
- else
- nothing()
- end if
- if gMood = 2 then
- play frame "MoodTired"
- else
- nothing()
- end if
- if gMood = 3 then
- play frame "MoodHorny"
- else
- nothing()
- end if
- end
-
- on stateOfBeing
- set gState to 3
- set the castNum of sprite 13 to gState
- updateStage()
- end
-
- on Aanswer i, y
- set myList to list("HT4.AIF", "LT.AIF", "NC1.AIF", "R1.AIF", "SS1.AIF", "ST1.AIF", "WC1.AIF", "T1.AIF", "UH1.AIF")
- set z to random(9)
- set mySound to getAt(myList, z)
- if gAnswers = i then
- set gState to gState + 1
- if gState > 6 then
- set gState to 6
- end if
- set the castNum of sprite 13 to gState
- updateStage()
- set gAnswers to gAnswers + 1
- if y = 9 then
- play frame the frame + 4
- else
- play frame the frame + 1
- end if
- end if
- if gAnswers <> i then
- set gState to gState - 1
- if gState = 0 then
- play frame "fin"
- else
- puppetSound(mySound)
- set the castNum of sprite 13 to gState
- play frame the frame
- end if
- end if
- end
-
- on winner
- set gWin to gWin + 1
- play movie "Virtual Sex:MAIN"
- end
-
- on clearTheBitches
- set gJR to 0
- set gTM to 0
- set gMS to 0
- play movie "Virtual Sex:MAIN"
- end
-